5d612098770c4ada67c90ac2abdf485db56bc708,src/org/openstreetmap/josm/data/validation/tests/MultipolygonTest.java,MultipolygonTest,visit,#Relation#,164
Before Change
if(area == null)
addError(r, new TestError(this, Severity.OTHER, tr("No style for multipolygon"), NO_STYLE, r));
else
addError(r, new TestError(this, Severity.OTHER, tr("No style in multipolygon relation"),
NO_STYLE_POLYGON, r));
}
if (area != null) {
After Change
if (area == null) {
addError(r, new TestError(this, Severity.OTHER, tr("No style for multipolygon"), NO_STYLE, r));
} else {
addError(r, new TestError(this, Severity.OTHER, tr("No style in multipolygon relation"),
NO_STYLE_POLYGON, r));
}
}
}